home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / DELPHI / SOCKV3.ZIP / WWW.ZIP / WWW.DPR < prev    next >
Encoding:
Text File  |  1996-03-13  |  185 b   |  14 lines

  1. program www;
  2.  
  3. uses
  4.   Forms,
  5.   web in 'web.pas' {Webform};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.Initialize;
  11.   Application.CreateForm(TWebform, Webform);
  12.   Application.Run;
  13. end.
  14.